home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Python / protos / marshal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-25  |  567 b   |  13 lines

  1. static void w_more ( int c , WFILE *p );
  2. static void w_string ( char *s , int n , WFILE *p );
  3. static void w_short ( int x , WFILE *p );
  4. static void w_long ( long x , WFILE *p );
  5. #if SIZEOF_LONG >4
  6. static void w_long64 ( long x , WFILE *p );
  7. #endif
  8. static void w_object ( PyObject *v , WFILE *p );
  9. static PyObject *marshal_dump ( PyObject *self , PyObject *args );
  10. static PyObject *marshal_load ( PyObject *self , PyObject *args );
  11. static PyObject *marshal_dumps ( PyObject *self , PyObject *args );
  12. static PyObject *marshal_loads ( PyObject *self , PyObject *args );
  13.